home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo This command prepares your disks to run on a two-floppy system.
- echo ˇ
- echo A formatted disk labeled KWIKSTAT DATA DISK should be in the B: drive.
- pause
- echo Copying DBF, IMG and DAT files to disk B:. . .
- copy *.dbf b:
- copy *.img b:
- copy *.dat B:
- echo ------------------------------------------------------------------ˇ
- echo The .DBF, DAT and .IMG files have been copied to the B: disk.
- echo ------------------------------------------------------------------ˇ
- pause
- :disk1
- cls
- echo ------------------------------------------------------------------ˇ
- echo PLACE KWIKSTAT DISK 1 IN THE B: DRIVE. The KS.DOC and DBF files are
- echo about to be erased from disk 3 in drive A:. If you are using the
- echo "Working disk" copy of the the original disk 3, this is no problem. If
- echo you are using the original Kwikstat disk, and want to stop this,
- echo press CTRL-Break now, then redo MAKEDATA using a COPY of disk 3.
- echo Otherwise...
- echo ------------------------------------------------------------------ˇ
- pause
- if not exist b:brt71efr.exe goto oops
- erase a:ks.doc
- erase a:*.dbf
- copy b:brt*.exe a:
- echo Disk 3 is now ready for use.
- echo Now place DISK 1 IN THE A: DRIVE, WORKING DISK IN B: DRIVE and type
- echo FSETUP
- echo ------------------------------------------------------------------ˇ
- goto end
- :oops
- cls
- echo ******** DISK 1 is not in drive B:, please try again ********
- pause
- goto disk1
- :end
-
-